home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
L' Effet Pommier 3
/
L'Effet Pommier - Volume 03.iso
/
HyperCard-SuperCard
/
XCMD Docs
/
CompileIt! Source Code
/
xPrint()
< prev
Wrap
Text File
|
1995-08-19
|
631b
|
21 lines
function xPrint
put openPicture(curPort@.portRect) into jjj
copyBits thePort@.portBits,thePort@.portBits,thePort@.portRect,thePort@.portRect,0,nil
closePicture
put newHandle(120) into thePrintRec
prOpen
PrintDefault(thePrintRec)
if not PrStlDialog(thePrintRec) then exit xPrint
if not PrJobDialog(thePrintRec) then exit xPrint
put PrOpenDoc(thePrintRec,nil,nil) into thePrinterPort
PrOpenPage thePrinterPort , NIL
DrawPicture jjj,curPort@.PortRect
PrClosePage(thePrinterPort)
PrCloseDoc(thePrinterPort)
PrClose
setPort curPort
disposHandle thePrintRec
disposHandle j
KillPicture jjj
end xPrint